VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187

by Sean Street (14 Submissions)
Category: Math/Dates
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Tue 31st October 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187

Rate forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187



    Dim lngHandle
    lngHandle = Shell("calc.exe", 1)
    AppActivate lngHandle
    SendKeys "88" & "{y}", True
    SendKeys "13", True
    SendKeys "{%}", True
    SendKeys "187", True
    SendKeys "=", True
    SendKeys "%E", True
    SendKeys "C", True
    SendKeys "%{F4}", True
    MsgBox Clipboard.GetText
End Sub

Download this snippet    Add to My Saved Code

forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187 Comments

No comments have been posted about forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187. Why not be the first to post a comment about forcing VB to manipulate large numbers....in this case we want to perform: (88^13) MOD 187.

Post your comment

Subject:
Message:
0/1000 characters